home *** CD-ROM | disk | FTP | other *** search
- id selectedString;
- id textFieldValue;
- id stringList;
- id aString;
-
- - awake {
- if (!stringList) {
- stringList = @("All for one; and one for all!", "Carpe Diem!");
- }
- if (!selectedString) {
- selectedString = [stringList objectAtIndex:0];
- }
- }
-
- - changeBlinkingText {
- if (textFieldValue && [textFieldValue length]) {
- selectedString = textFieldValue;
- textFieldValue=@"";
- }
- return self;
- }
-
-
-